home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet multimedia / Animacje, filmy i prezentacje / Modelowanie 3D / K-3D 0.6.5.0 / k3d-all-in-one-setup-0.6.5.0.exe / aqsis-setup-1.1.0-2006-12-09.exe / include / aqsis / sstring.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-06-20  |  3.7 KB  |  132 lines

  1. // Aqsis
  2. // Copyright ⌐ 1997 - 2001, Paul C. Gregory
  3. //
  4. // Contact: pgregory@aqsis.org
  5. //
  6. // This library is free software; you can redistribute it and/or
  7. // modify it under the terms of the GNU General Public
  8. // License as published by the Free Software Foundation; either
  9. // version 2 of the License, or (at your option) any later version.
  10. //
  11. // This library is distributed in the hope that it will be useful,
  12. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14. // General Public License for more details.
  15. //
  16. // You should have received a copy of the GNU General Public
  17. // License along with this library; if not, write to the Free Software
  18. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  19.  
  20.  
  21. /** \file
  22.         \brief Declares an extended string class, CqString, derived from std::string
  23.         \author Paul C. Gregory (pgregory@aqsis.org)
  24. */
  25.  
  26. //? Is .h included already?
  27. #ifndef SSTRING_H_INCLUDED
  28. #define SSTRING_H_INCLUDED 1
  29.  
  30. #include <string>
  31. #include <sstream>
  32. #include <iostream>
  33.  
  34. #include "aqsis.h"
  35.  
  36.  
  37. START_NAMESPACE( Aqsis )
  38.  
  39. typedef std::string CqStringBase;
  40.  
  41. //----------------------------------------------------------------------
  42. /** \class CqString
  43.  * An extended string class, derived from std::string
  44.  */
  45.  
  46. class CqString : public CqStringBase
  47. {
  48.     public:
  49.         CqString() : CqStringBase()
  50.         {}
  51.         CqString( const CqString& str ) : CqStringBase( str )
  52.         {}
  53.         CqString( const CqStringBase& str ) : CqStringBase( str )
  54.         {}
  55.         CqString( const TqChar* s ) : CqStringBase( s )
  56.         {}
  57.         /** Construct from an integer,
  58.          */
  59.         CqString( TqInt i )
  60.         {
  61.             *this += i;
  62.         }
  63.         /** Construct from a float,
  64.          */
  65.         CqString( TqFloat f )
  66.         {
  67.             *this += f;
  68.         }
  69.  
  70.  
  71.         inline static TqUlong    hash( const char *strName )
  72.         {
  73.             TqUlong retval = 0;
  74.             const char *p = strName;
  75.             retval = *p;
  76.  
  77.             if(retval)
  78.             {
  79.                 for (p += 1; *p != '\0'; p++)
  80.                 {
  81.                     retval = (retval << 5) - retval + *p;
  82.                 }
  83.             }
  84.             return retval;
  85.         }
  86.  
  87.         // Format a string printf style.
  88.         CqString&    Format( const TqChar* Format, ... );
  89.         CqString    ExpandEscapes() const;
  90.         CqString    TranslateEscapes() const;
  91.         CqString    ToLower() const;
  92.  
  93.         // Concatenation functions not provided by std::string
  94.         CqString&    operator+=( const CqString& str );
  95.         CqString&    operator+=( const TqChar* str );
  96.         CqString&    operator+=( TqChar c );
  97.         CqString&    operator+=( TqInt i );
  98.         CqString&    operator+=( TqFloat f );
  99. };
  100.  
  101.  
  102. // Some useful functions
  103. std::ostream& operator<<( std::ostream & stmOutput, const CqString& strString );
  104. CqString operator+( const CqString& strAdd1, const CqString& strAdd2 );
  105. CqString operator+( const TqChar* strAdd1, const CqString& strAdd2 );
  106. CqString operator+( const CqString& strAdd1, const TqChar* strAdd2 );
  107. CqString operator+( const CqString& strAdd1, TqChar ch );
  108. CqString operator+( TqChar ch, const CqString& strAdd2 );
  109.  
  110. // These must be defined so that std::string can be used as a type in the ShaderVM and
  111. // in the parameter dicing code.
  112. CqString operator/( const CqString& strAdd1, const CqString& strAdd2 );
  113. CqString operator*( const CqString& strAdd1, const CqString& strAdd2 );
  114. CqString operator*( const CqString& strAdd1, TqFloat f );
  115. CqString operator-( const CqString& strAdd1, const CqString& strAdd2 );
  116.  
  117. /// The ultimate function for converting anything into a string
  118. template<typename value_t>
  119. CqString ToString(const value_t& Value)
  120. {
  121.     std::ostringstream buffer;
  122.     buffer << Value;
  123.     return CqString(buffer.str());
  124. }
  125.  
  126. //-----------------------------------------------------------------------
  127.  
  128. END_NAMESPACE( Aqsis )
  129.  
  130. #endif    // !SSTRING_H_INCLUDED
  131.  
  132.